home *** CD-ROM | disk | FTP | other *** search
/ Internet Publisher's Toolbox 2.0 / Internet Publisher's Toolbox.iso / internet / ntserver / wtsource / soundex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-29  |  339 b   |  15 lines

  1. #ifndef __SOUNDEX_H__
  2. #define __SOUNDEX_H__
  3.  
  4. #if defined(WIN32) || defined(__GNUC__)
  5. void Soundex (char *Name, char *Key);
  6. void Phonix (char *Name, char *Key);
  7. void SoundexCode (char *Name, char *Key);
  8. void PhonixCode (char *Name, char *Key);
  9. #else
  10. extern void Soundex ();
  11. extern void Phonix ();
  12. #endif
  13.  
  14. #endif __SOUNDEX_H__
  15.